home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / util / batch / dir2html.lha / dir2html / htdir < prev    next >
AmigaDOS Script File  |  2000-10-29  |  2KB  |  39 lines

  1. .key disk,pref
  2. .bra {
  3. .ket }
  4. cd >env:curdir
  5. cd {disk}
  6. echo >ram:tmp.html "<HTML><HEAD><TITLE>DIR2HTML</TITLE>"
  7. echo >>ram:tmp.html "<META HTTP-EQUIV=content-type CONTENT=text/html;CHARSET=iso-8859-2>"
  8. echo >>ram:tmp.html "<META NAME=Description CONTENT=dir2html>"
  9. echo >>ram:tmp.html "<META NAME=Generator CONTENT=dir2html>"
  10. echo >>ram:tmp.html "<META NAME=Keywords CONTENT=dir2html></HEAD>"
  11. echo >>ram:tmp.html "<BODY BGCOLOR=yellow TEXT=black LINK=blue ALINK=blue VLINK=blue>"
  12. echo >>ram:tmp.html "<FONT SIZE=8><B>Directory of:</B></FONT><BR><FONT SIZE=7><B>"
  13. echo >>ram:tmp.html {pref}
  14. echo >>ram:tmp.html "</B></FONT><CENTER><HR><BR><TABLE BORDER=1 CELLPADDING=2 CELLSPACING=2><TR VALIGN=TOP>"
  15. echo >>ram:tmp.html "<TD ALIGN=RIGHT BGCOLOR=black><FONT SIZE=4 COLOR=white><B>Length</B></FONT></TD>"
  16. echo >>ram:tmp.html "<TD ALIGN=LEFT BGCOLOR=black><FONT SIZE=4 COLOR=white><B>Directory</B></FONT></TD>"
  17. echo >>ram:tmp.html "<TD ALIGN=LEFT BGCOLOR=black><FONT SIZE=4 COLOR=white><B>Filename</B></FONT></TD><TD></TD></TR>"
  18. list >>ram:tmp.html PAT=#? FILES NODATES NOHEAD QUICK ALL LFORMAT="<TR VALIGN=TOP><TD ALIGN=RIGHT BGCOLOR=white><FONT SIZE=4 COLOR=black><B>%l</B></FONT></TD><TD ALIGN=LEFT BGCOLOR=white><FONT SIZE=4 COLOR=black><B>{pref}/%s</B></FONT></TD><TD ALIGN=LEFT BGCOLOR=white><FONT SIZE=4 COLOR=black><B>%s</B></FONT></TD><TD ALIGN=LEFT BGCOLOR=white><FONT SIZE=4 COLOR=black><A HREF=/{pref}/%s%s><B>GET</B></FONT></TD></TR>"
  19. echo >>ram:tmp.html "</TABLE><BR><BR><HR><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0><TR VALIGN=TOP>"
  20. echo >>ram:tmp.html "<TD ALIGN=LEFT><FONT SIZE=2><A HREF=javascript:history.back()>BACK</A>"
  21. echo >>ram:tmp.html "</FONT></TD><TD ALIGN=RIGHT><FONT SIZE=4>"
  22. echo >>ram:tmp.html "Generated with: <A HREF=http://www.crevman.link.pl/files/dir2html.lha>dir2html</A>"
  23. echo >>ram:tmp.html " by <A HREF=mailto:amiga@irc.pl?subject=DIR2HTML>BloodMan</A>"
  24. echo >>ram:tmp.html "</FONT></TD></TR></TABLE></CENTER>"
  25. echo >>ram:tmp.html "</BODY></HTML>"
  26. cd $curdir
  27. ;
  28. ; ---  dir2html [full] v1.0 (29.10.2000) by BloodMan^PTE  ---
  29. ; download from http://www.crevman.link.pl/files/dir2html.lha
  30. ; any comments, suggestions etc; please write to amiga@irc.pl
  31. ;
  32. ;
  33. ; install= copy htdir c:
  34. ;          protect c:htdir +s
  35. ;
  36. ;   usage= htdir disk:           <- if dir is a rootdir do NOT input 2nd parameter
  37. ;          htdir disk:path/ path
  38. ;                                 `- this is for show (Directory of:) and for link.
  39.